home *** CD-ROM | disk | FTP | other *** search
/ Amiga Format CD 42 / Amiga Format AFCD42 (Issue 126, Aug 1999).iso / -serious- / comms / other / slrn / slrn_src / src / mime.h < prev    next >
C/C++ Source or Header  |  1999-05-14  |  1KB  |  39 lines

  1. /* Copyright (c) 1998 John E. Davis (davis@space.mit.edu)
  2.  *
  3.  * This file is part of slrn.
  4.  *
  5.  * Slrn is free software; you can redistribute it and/or modify it
  6.  * under the terms of the GNU General Public License as published by the
  7.  * Free Software Foundation; either version 2, or (at your option) any
  8.  * later version.
  9.  * 
  10.  * Slrn is distributed in the hope that it will be useful, but WITHOUT
  11.  * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
  12.  * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
  13.  * for more details.
  14.  * 
  15.  * You should have received a copy of the GNU General Public License
  16.  * along with Slrn; see the file COPYING.  If not, write to the Free
  17.  * Software Foundation, 59 Temple Place - Suite 330, 
  18.  * Boston, MA  02111-1307, USA.
  19.  */
  20.  
  21. extern int slrn_rfc1522_decode_string (char *);
  22.  
  23. extern FILE *slrn_mime_encode (FILE *);
  24. extern void slrn_mime_header_encode (char *, unsigned int);
  25. extern void slrn_mime_process_article (void);
  26. extern void slrn_mime_add_headers (FILE *);
  27. extern int slrn_mime_scan_file (FILE *);
  28. extern void slrn_mime_article_init (void);
  29. extern int slrn_mime_call_metamail (void);
  30. extern int slrn_check_rfc1522 (char *);
  31.  
  32. extern char *Slrn_Mime_Display_Charset;
  33. extern int Slrn_Use_Mime;
  34. extern int Slrn_Mime_Was_Modified;
  35. extern int Slrn_Mime_Needs_Metamail;
  36. extern int Slrn_Mime_Was_Parsed;
  37. extern int Slrn_Use_Meta_Mail;
  38. extern char *Slrn_MetaMail_Cmd;
  39.